home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue39 / userint / ProjMan.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-08-06  |  374 b   |  26 lines

  1. unit ProjMan;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ComCtrls,DockForm;
  8.  
  9. type
  10.   TProjManager = class(TDOckableForm)
  11.     TreeView1: TTreeView;
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. var
  19.   ProjManager: TProjManager;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. end.
  26.